/* Container Wrapper */
.container-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Navbar */
.navbar {
    width: 100%;
    padding: 10px 0;
    margin: 20px 0;
    border-top: solid #121212 2px;
    border-bottom: solid #121212 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-sizing: border-box;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 40px;
}

/* Menu */
.menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin-bottom: 0;
}

.menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.menu li a:hover {
    color: #007bff;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        order: 2;
        width: 100%;
    }

    .logo {
        order: 1;
        justify-content: center;
        width: 100%;
    }
}

/* Search Wrapper */
.search-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

/* Search Button */
.button-search {
    background-color: #d93025;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.button-search:hover {
    background-color: #b62d23ff;
}

.button-search:active {
    background-color: #d93025;
    transform: translateY(4px);
}

/* Input Group */
.input-group {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    flex: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.input-group input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.9rem 1rem;
    font-size: 1rem;
}

.button-paste {
    background-color: #dbdadaff;
    border: none;
    cursor: pointer;
    padding: 0.9rem 1rem;
    font-weight: bold;
}

.button-paste:hover {
    background-color: #bebebeff;
}

.button-paste:active {
    background-color: #dbdadaff;
    transform: translateY(4px);
}

/* Responsive Search */
@media (max-width: 768px) {
    .search-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .button-search {
        width: 100%;
        padding: 0.5rem;
    }

    .input-group input {
        width: 100%;
    }
}

/* Dark Mode */
.dark-mode {
    background-color: #121212;
    color: #f1f1f1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px 50px;
    margin: 30px 0;
    background: linear-gradient(135deg, #f9fafc, #ffffff);
    border-radius: 16px;
    width: 100%;
    box-sizing: border-box;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.hero h2 {
    font-size: 1.75rem;
    font-weight: 500;
    /* color: #686868ff; */
    margin-bottom: 10px;
}

.hero h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #686868ff;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.1rem;
    margin: 15px auto 25px;
    max-width: 700px;
    color: #555;
}

/* Input Box */
.input-box {
    margin: 25px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    max-width: 600px;
}

.input-box input {
    flex: 1;
    min-width: 250px;
    padding: 12px 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.input-box input:focus {
    border-color: #007bff;
}

.input-box button {
    padding: 12px 20px;
    background: #007bff;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.input-box button:hover {
    background: #005fcc;
}

/* Sections */
section {
    padding: 50px 20px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #111;
}

section ul {
    list-style: none;
    padding: 0;
}

section li {
    margin-bottom: 10px;
}

/* FAQ Section */
.faq {
    background: #f9fafc;
    border-radius: 16px;
    padding: 40px 25px;
    margin-bottom: 30px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #111;
}

/* FAQ Item */
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 5px 15px;
    transition: background 0.3s ease;
}
/*
.faq-item.open {
    background: #eef5ff;
} */

/* Question Button */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #007bff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s, background 0.3s;
    padding: 10px 0;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #007bff;
    transition: transform 0.3s, color 0.3s;
}

.faq-question.active {
    color: #111;
}

.faq-question.active::after {
    content: '−';
    color: #111;
    transform: rotate(180deg);
}

/* Smooth Animation for Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    margin: 0px;
    color: #555;
    line-height: 1.6;
}

/* When Open */
.faq-item.open .faq-answer {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
}


/* Footer */
footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
    margin: 20px 0 0 0;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

footer p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero h3 {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .input-box {
        flex-direction: column;
        align-items: stretch;
    }

    .input-box input,
    .input-box button {
        width: 100%;
    }

    section {
        padding: 40px 15px;
    }
}

